runtime.mheap.curArena (field)
15 uses
runtime (current package)
mheap.go#L190: curArena struct {
mheap.go#L1483: end := h.curArena.base + ask
mheap.go#L1485: if nBase > h.curArena.end || /* overflow */ end < h.curArena.base {
mheap.go#L1496: if uintptr(av) == h.curArena.end {
mheap.go#L1499: h.curArena.end = uintptr(av) + asize
mheap.go#L1504: if size := h.curArena.end - h.curArena.base; size != 0 {
mheap.go#L1508: sysMap(unsafe.Pointer(h.curArena.base), size, &gcController.heapReleased)
mheap.go#L1515: h.pages.grow(h.curArena.base, size)
mheap.go#L1519: h.curArena.base = uintptr(av)
mheap.go#L1520: h.curArena.end = uintptr(av) + asize
mheap.go#L1527: nBase = alignUp(h.curArena.base+ask, physPageSize)
mheap.go#L1531: v := h.curArena.base
mheap.go#L1532: h.curArena.base = nBase
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |